03. Challenge 1

stdout

Let's start with an easy one. In this quiz, I'm giving you a main function. All I want you to do is write no more steering wheels to stdout.

Just as a reminder, anything written to stdout will appear below the code editor after you test or submit your code.

Task List:

Task Feedback:

Awesome! Try it out!

Start Quiz:

#include <iostream>

int main()
{
    // write your code here!
    // print "no more steering wheels" to stdout
    return 0;
}